* ---- Style for entire screen ---- */
html {
	background: #3e3e3e;
}
body {
	border:1px solid black; 
	width:1200px;
	margin:0 auto; 
	padding:0.5em;    
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
}
header {
	background: #3e3e3e;
}
nav {
	background: #3e3e3e;
	padding-left: 0.5em;
}
a{text-decoration:none
}
h6 {
	margin:0;
	color:#666362
}
/* ---- Getting rid of the navigation underlining ---- */
a{text-decoration:none
}
/* ---- Styling the images ---- */
figure {
    float: left; /* aligning left so as to stack the next image  */
    margin-right: 5px;   /* - putting a space to the right*/ 
	width: 450px;/* setting the width of the figure section*/
}

figure img {
    display: block;/* telling the image it can be in one line*/
	width: 450px; 
	margin-left:-15px;/* moving the image closer to the LH border*/
	border:4px solid black;/* putting border around the pictures*/
}
/* Styling the caption under the image*/
figcaption {
    text-align: center;
    margin-top: 5px;
}